|
| 1 | +import os |
| 2 | +from setuptools import find_packages, setup |
| 3 | + |
| 4 | +with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme: |
| 5 | + README = readme.read() |
| 6 | + |
| 7 | +os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) |
| 8 | + |
| 9 | +setup( |
| 10 | +name='django-admin-coreui', |
| 11 | +version='1.0.13', |
| 12 | +zip_safe=False, |
| 13 | +packages=find_packages(), |
| 14 | +include_package_data=True, |
| 15 | +description='', |
| 16 | +long_description=README, |
| 17 | +long_description_content_type="text/markdown", |
| 18 | +url='https://github.com/app-generator/django-admin-coreui', |
| 19 | +author='AppSeed.us', |
| 20 | +author_email='support@appseed.us', |
| 21 | +license='EULA License', |
| 22 | +classifiers=[ |
| 23 | + 'Intended Audience :: Developers', |
| 24 | + 'Intended Audience :: System Administrators', |
| 25 | + 'License :: OSI Approved :: MIT License', |
| 26 | + 'Operating System :: OS Independent', |
| 27 | + 'Programming Language :: Python', |
| 28 | + 'Programming Language :: Python :: 2.6', |
| 29 | + 'Programming Language :: Python :: 2.7', |
| 30 | + 'Programming Language :: Python :: 3.2', |
| 31 | + 'Programming Language :: Python :: 3.3', |
| 32 | + 'Programming Language :: Python :: 3.4', |
| 33 | + 'Programming Language :: Python :: 3.5', |
| 34 | + 'Programming Language :: Python :: 3.6', |
| 35 | + 'Environment :: Web Environment', |
| 36 | + 'Topic :: Software Development', |
| 37 | + 'Topic :: Software Development :: User Interfaces', |
| 38 | + ], |
| 39 | +) |
0 commit comments