-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
46 lines (41 loc) · 1.47 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
44
45
46
import codecs
import re
from setuptools import setup
from setuptools import find_packages
version = ""
with open("pytaxize/__init__.py", "r") as fd:
version = re.search(
r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTILINE
).group(1)
if not version:
raise RuntimeError("Cannot find version information")
with codecs.open("README.rst", "r", "utf-8") as f:
readme = f.read()
with codecs.open("Changelog.rst", "r", "utf-8") as f:
changes = f.read()
long_description = "\n\n" + readme + "\n\n" + changes
setup(
name="pytaxize",
version=version,
description="Taxonomic toolbelt for Python",
long_description=long_description,
author="Scott Chamberlain",
author_email="[email protected]",
url="https://github.com/sckott/pytaxize",
license="MIT",
packages=find_packages(exclude=["test-*"]),
install_requires=["requests", "lxml", "multipledispatch", "pygbif"],
extras_require={"test": ["vcrpy", "vcrpy-unittest"], "dataframe": ["pandas"]},
package_data={"pytaxize": ["data/*.csv"]},
include_package_data=True,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
)