-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 1015 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
from os import path
from setuptools import setup, find_packages
import wordweaver
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
with open(path.join(this_directory, 'requirements.txt')) as f:
REQS = f.read().splitlines()
setup(
name='wordweaver',
python_requires='>=3.6',
license="MIT",
author='Aidan Pine, Anna Kazantseva',
author_email='[email protected], [email protected]',
version=wordweaver.VERSION,
url="https://github.com/nrc-cnrc/wordweaver",
description='WordWeaver: A tool for creating RESTful morphology web services',
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
'wordweaver = wordweaver.cli:cli'
]
},
install_requires=REQS
)