-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (53 loc) · 1.87 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
47
48
49
50
51
52
53
54
55
56
import codecs
from setuptools import setup
from setuptools import find_packages
with codecs.open("README.md", "r", "utf-8") as f:
readme = f.read().replace("\r", '')
with codecs.open("CHANGELOG.md", "r", "utf-8") as f:
changes = f.read().replace("\r", '')
changes = changes.replace(":issue:", "")
long_description = readme + "\n\n" + changes
setup(
name="bananompy",
version="0.0.1",
description="Python client for Bionomia",
long_description=long_description,
long_description_content_type="text/markdown",
author="Geoff Ower",
author_email="[email protected]",
url="http://github.com/speciesfilegroup/bananompy",
download_url="https://github.com/speciesfilegroup/bananompy/archive/refs/tags/v0.0.1.tar.gz",
license="MIT",
packages=find_packages(exclude=["test-*"]),
install_requires=[
"requests>2.7",
"beautifulsoup4>4.9.0",
"lxml>4.4.3"
],
extras_require={
"dev": [
"codecov",
"pytest",
"pytest-cov",
"python-dateutil",
"sphinx>7.2.0",
"sphinx_issues",
"sphinx-rtd-theme",
"twine",
"vcrpy",
"wheel"],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
],
keywords = ['bionomia', 'biodiversity', 'collectors', 'specimens', 'API', 'web-services', 'species', 'natural history', 'taxonomists', 'biologists'],
)