-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (40 loc) · 1.4 KB
/
setup.py
File metadata and controls
45 lines (40 loc) · 1.4 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 Rhizi API Client."""
version = "0.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='Rhizi API Client',
version=version,
description='Rhizi - collaborative network mapping.',
long_description =long_description,
author='',
author_email='clement@rhizi.com',
url = "http://rhizi.org",
download_url='https://github.com/rhizi/rhizi-client',
keywords = ["network", "edition", "visualization", "rhizi"],
packages = find_packages(exclude=['res', 'scripts', 'tests*']),
install_requires=required,
entry_points = {
'console_scripts': [ 'rhizi-client=bin.import_to_rhizi: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',
]
)