|
1 | | -from distutils.core import setup |
2 | | -setup( |
3 | | - name = 'Pytable', |
4 | | - packages = ['Pytable'], # this must be the same as the name above |
5 | | - version = '0.1', |
6 | | - description = 'A module to create tables in python', |
7 | | - author = 'jimmy ahalpara', |
8 | | - author_email = 'jimmyahalpar123@gmail.com', |
9 | | - keywords = ['testing', 'logging', 'example'], # arbitrary keywords |
10 | | - classifiers = [], |
11 | | -) |
| 1 | +from setuptools import setup |
| 2 | + |
| 3 | + |
| 4 | + |
| 5 | + |
| 6 | + |
| 7 | + |
| 8 | +# some more details |
| 9 | +CLASSIFIERS = [ |
| 10 | + 'Development Status :: 4 - Beta', |
| 11 | + 'Intended Audience :: Developers', |
| 12 | + 'Topic :: Internet', |
| 13 | + 'License :: MIT License', |
| 14 | + 'Programming Language :: Python', |
| 15 | + 'Programming Language :: Python :: 2', |
| 16 | + 'Programming Language :: Python :: 2.6', |
| 17 | + 'Programming Language :: Python :: 2.7', |
| 18 | + 'Programming Language :: Python :: 3', |
| 19 | + 'Programming Language :: Python :: 3.3', |
| 20 | + 'Programming Language :: Python :: 3.4', |
| 21 | + 'Programming Language :: Python :: 3.5', |
| 22 | + ] |
| 23 | + |
| 24 | +# calling the setup function |
| 25 | +setup(name='Pytable', |
| 26 | + version='1.0.0', |
| 27 | + description='module for making tables in python', |
| 28 | + long_description='module for making tables in python', |
| 29 | + url='https://github.com/jimmyahalpara/Pytable', |
| 30 | + author='Jimmy Kumar Ahalpara', |
| 31 | + author_email='jimmyahalpara123@gmail.com', |
| 32 | + license='MIT', |
| 33 | + packages=['Pytable'], |
| 34 | + classifiers=CLASSIFIERS, |
| 35 | + keywords='tables' |
| 36 | + ) |
0 commit comments