123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- """A setuptools based setup module.
- See:
- https://packaging.python.org/en/latest/distributing.html
- https://github.com/pypa/sampleproject
- """
- from setuptools import setup, find_packages
- from codecs import open
- from os import path
- here = path.abspath(path.dirname(__file__))
- with open(path.join(here, 'README.md'), encoding='utf-8') as f:
- long_description = f.read()
- setup(
- name='himport',
-
-
-
- version='0.1',
- description='Himport project',
- long_description=long_description,
-
- url='',
-
- author='Philippe Le Brouster',
- author_email='plb@nebkha.net',
-
- license='',
-
- classifiers=[
-
-
-
-
- 'Development Status :: 4 - Beta',
-
- 'Intended Audience :: Developers',
- 'Topic :: Software Development :: Build Tools',
- 'Office/Business :: Financial :: Accounting',
-
-
- 'Programming Language :: Python :: 2',
- 'Programming Language :: Python :: 2.7',
- 'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.3',
- 'Programming Language :: Python :: 3.4',
- 'Programming Language :: Python :: 3.5',
- ],
-
- keywords='himport',
-
-
- packages=find_packages(exclude=['contrib', 'doc', 'tests']),
-
-
-
-
-
-
-
- install_requires=['MySQL-python', 'sqlalchemy', 'future'],
-
-
-
-
- extras_require={
-
-
- },
-
-
-
- package_data={
- 'himport': [],
- },
-
-
-
-
-
-
-
-
- entry_points={
- 'console_scripts': [
- 'himport=himport.cli:main',
- ],
- },
- )
|