-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (30 loc) · 1012 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
#!/usr/bin/env python
import os
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.7',
description='Ranch does addressing in Python',
long_description=long_description,
author='Martijn Arts',
author_email='martijn@3dhubs.com',
url="https://github.com/3DHubs/ranch",
packages=['ranch'],
package_dir={'ranch': 'ranch'},
package_data={'ranch': [_get_latest_export()]},
scripts=['scripts/ranch-download'],
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',
]
)