-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (26 loc) · 1.02 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import setup
setup(
name = 'multiindex',
packages = ['multiindex'],
version = '0.2.0',
description = 'Container similar to boost multi index',
author = 'Sushobhit',
author_email = '[email protected]',
url = 'https://github.com/sushobhit27/multiindex',
download_url = 'https://github.com/sushobhit27/multiindex/archive/0.1.tar.gz',
keywords = ['container', 'multi index', 'boost'], # arbitrary keywords
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Operating System :: Microsoft',
'Operating System :: Microsoft :: Windows :: Windows 7',
'Operating System :: Unix',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'Intended Audience :: Developers',
],
)