-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
58 lines (56 loc) · 1.43 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
57
58
from setuptools import setup, find_packages
# Read long_description from file
try:
long_description = open("README.rst", "r").read()
except FileNotFoundError:
long_description = (
"Please see"
" https://github.com/adamancer/nmnh_ms_tools.git"
" for more information about the nmnh_ms_tools"
" package."
)
setup(
name="nmnh_ms_tools",
version="0.2b1",
description=(
"Tools for working with natural history collections data"
" used in the Department of Mineral Sciences at the"
" Smithsonian's National Museum of Natural History"
),
long_description=long_description,
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
],
url="https://github.com/adamancer/nmnh_ms_tools.git",
author="adamancer",
author_email="[email protected]",
license="MIT",
packages=find_packages(),
install_requires=[
"beautifulsoup4",
"bibtexparser",
"geographiclib",
"html5lib",
"inflect",
"lxml",
"matplotlib",
"nameparser",
"nltk",
"numpy",
"Pillow",
"pyproj",
"pytest",
"pytz",
"PyYAML",
"requests",
"requests_cache",
"Shapely",
"six",
"SQLAlchemy",
"titlecase",
"Unidecode",
],
include_package_data=True,
zip_safe=False,
)