-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (29 loc) · 879 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
33
34
35
36
#!/usr/bin/env python
"""
Setup script for shipdataprocess
"""
import codecs
import versioneer
from setuptools import find_packages
from setuptools import setup
package = __import__("shipdataprocess")
DEPENDENCIES = ["pytest", "unidecode", "roman"]
with codecs.open("README.md", encoding="utf-8") as f:
readme = f.read().strip()
setup(
author=package.__author__,
author_email=package.__email__,
description=package.__doc__.strip(),
include_package_data=True,
install_requires=DEPENDENCIES,
python_requires=">=3.6",
keywords=["ship", "vessel", "fishing", "normalization"],
license="Apache 2.0",
long_description=readme,
name="shipdataprocess",
packages=find_packages(exclude=["test*.*", "tests"]),
url=package.__source__,
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
zip_safe=True,
)