-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathsetup.py
40 lines (36 loc) · 1.27 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
import setuptools
with open("turkle/__init__.py") as fp:
ns = {}
exec(fp.read(), ns)
with open("README.rst") as fp:
long_description = fp.read()
with open('requirements.txt') as f:
requirements = [line.strip() for line in f]
setuptools.setup(
name="turkle",
version=ns["__version__"],
description="Django-based clone of Amazon's Mechanical Turk service",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/hltcoe/turkle",
project_urls={
"Documentation": "https://turkle.readthedocs.io/",
},
author="Craig Harman",
author_email="[email protected]",
license="BSD",
packages=setuptools.find_packages(exclude=['scripts', 'turkle_site', 'turkle.tests']),
include_package_data=True,
install_requires=requirements,
python_requires=">=3.6",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
],
keywords=['annotation', 'crowdsourcing', 'mturk', 'mechanical turk'],
)