|
@@ -0,0 +1,111 @@
|
|
|
+"""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',
|
|
|
+ ],
|
|
|
+ },
|
|
|
+)
|