-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (38 loc) · 1.5 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
#!/usr/bin/env python
from setuptools import setup
import glob
import src as gr # <- read author and version.
setup(
name='gender_render',
version=gr.__version__,
description="Template-system and proof-of-concept for rendering gender-neutral text- and email-templates with \
the correct pronouns of all people involved.",
long_description=open('README.md', "r").read(),
long_description_content_type="text/markdown",
keywords="template-engine template-language specification gender-equality gender pronouns grammatical-gender",
author=gr.__author__,
author_email="phseiff@phseiff.com",
url='https://github.com/phseiff/gender-render/',
packages=['gender_render'],
package_dir={'gender_render': 'src'},
data_files=[
('src/data', glob.glob("src/data/*")),
],
package_data={'gender_render': ['*', 'src/*']},
include_package_data=True,
install_requires=[
"requests~=2.25.1"
],
license="MIT (limited to python-files that are actually part of the package installation,\
which excludes data sets and documentation/specifications that come with the software;\
refer to the `LICENSE-implementation.txt`-file that comes with this version of the software on PyPi for the full\
definition of what is covered by this license and what is not.)",
extras_require={
'more_warnings': ["nltk"],
'testing': ["typing_extensions"]
},
classifiers=[
"Programming Language :: Python :: 3",
],
python_requires=">=3.6",
)