forked from 3DHubs/Ranch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 965 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
#!/usr/bin/env python
from setuptools import setup
from ranch.specs import _get_latest_export
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except ImportError:
long_description = 'Ranch does addressing in Python'
setup(
name='Ranch',
version='1.0.0',
description='Ranch does addressing in Python',
long_description=long_description,
author='Martijn Arts',
author_email='[email protected]',
url="https://github.com/3DHubs/ranch",
packages=['ranch'],
scripts=['scripts/ranch-download'],
data_files=[('data', [_get_latest_export()])],
install_requires=['beautifulsoup4', 'flake8', 'requests', 'progressbar2',
'percache'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3 :: Only',
]
)