-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (40 loc) · 1.45 KB
/
setup.py
File metadata and controls
45 lines (40 loc) · 1.45 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python
from setuptools import setup,find_packages
"""Setup script for Topogram API Client."""
version = "1.0.1" # [major].[minor].[release]
# parse README
with open('README.md') as readme_file:
long_description = readme_file.read()
# parse requirements
with open('requirements.txt') as f:
required = f.read().splitlines()
# run setup
setup(
name='topogram-api-client',
version=version,
description='API Client for Topogram - Geo-network mapping.',
long_description =long_description,
author = "Clement Renaud",
author_email = "clement.renaud@gmail.com",
url = "http://topogram.io",
download_url='https://github.com/topogram/topogram-python-client',
keywords = ["network", "edition", "api client", "visualization", "topogram"],
packages = find_packages(exclude=['res', 'scripts', 'tests*']),
install_requires=required,
entry_points = {
'console_scripts': [ 'topogram-client=bin:main' ]
},
license='BSD',
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Natural Language :: English',
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development',
]
)