-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (24 loc) · 873 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
from setuptools import setup
with open('requirements.txt') as f:
required = f.read().splitlines()
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='portugese-name2gender',
version='0.1.0',
description='Predict the gender of any PT-BR name',
long_description=long_description,
url='https://github.com/arthurcerveira/Portuguese-Name2Gender',
author='Arthur Cerveira',
author_email='[email protected]',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=['pt_name2gender'],
install_requires=required,
# Include pt_name2gender/data and pt_name2gender/models in the package
package_data={'pt_name2gender': ['data/*', 'model/*']},
include_package_data=True,
)