-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·28 lines (25 loc) · 829 Bytes
/
setup.py
File metadata and controls
executable file
·28 lines (25 loc) · 829 Bytes
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
28
#!/usr/bin/env python
from distutils.core import setup
import vingd
setup(
name=vingd.__name__,
version=vingd.__version__,
description=vingd.__doc__,
long_description=open('README.rst').read(),
author=vingd.__author__,
author_email=vingd.__author_email__,
url=vingd.__url__,
packages=[vingd.__name__],
package_dir={vingd.__name__: vingd.__name__},
license=vingd.__license__,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Internet',
'Topic :: Office/Business :: Financial',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)