forked from beeware/batavia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (38 loc) · 1.35 KB
/
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
34
35
36
37
38
39
40
41
42
43
import io
import json
from setuptools import setup, find_packages
with io.open('README.rst', encoding='utf8') as readme:
long_description = readme.read()
with io.open('package.json', encoding='utf8') as package:
data = json.load(package)
setup(
name='batavia',
version=data['version'].replace('dev.', 'dev'),
description=data['description'],
long_description=long_description,
author=data['author'],
author_email='russell@keith-magee.com',
url=data['homepage'],
packages=find_packages(exclude=['docs', 'tests']),
python_requires='>=3.4, <=3.5',
license='New BSD',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development',
'Topic :: Utilities',
],
test_suite='tests',
package_urls={
'Funding': 'https://pybee.org/contributing/membership/',
'Documentation': 'http://batavia.readthedocs.io/en/latest/',
'Tracker': data['bugs']['url'],
'Source': 'https://github.com/pybee/batavia',
},
)