Skip to content

Commit d392a67

Browse files
Update setup.py
1 parent 28c2f4a commit d392a67

1 file changed

Lines changed: 36 additions & 11 deletions

File tree

setup.py

Lines changed: 36 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,36 @@
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

Comments
 (0)