-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
27 lines (26 loc) · 1.27 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 distutils.core import setup
setup(
name='gics',
packages=['gics', 'gics.definitions'],
version='0.2',
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
description='This library provides a way to parse, manipulate and analyze GICS codes.',
author='Dor Klein',
author_email='[email protected]',
url='https://github.com/dorklein/py-gics',
download_url='https://github.com/dorklein/py-gics/archive/v0.1-alpha.6.tar.gz',
keywords=['GICS', 'Global Industry Classification Standard'], # Keywords that define your package best
install_requires=[],
classifiers=[
'Development Status :: 5 - Production/Stable',
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers', # Define that your audience are developers
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License', # Again, pick a license
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
)