-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 951 Bytes
/
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
28
29
30
31
32
33
from setuptools import setup
from smappi import __version__
try:
readme = open("README.rst")
long_description = str(readme.read())
readme.close()
except:
long_description = ''
setup(
name='smappi',
version=__version__,
description="Python Client for Smappi API",
long_description=long_description,
keywords='smappi, api',
author='Mikhail Andreev',
author_email='[email protected]',
url='http://github.com/smappi/smappi-py',
license='MIT',
packages=['smappi', ],
install_requires=[],
zip_safe=False,
include_package_data=True,
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)