-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 686 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 686 Bytes
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
__author__ = 'Duc Bui'
import setuptools
from pathlib import Path
long_description = Path('README.rst').read_text()
setuptools.setup(
name="oppnlp",
version="0.0.2",
author="Duc Bui",
author_email="ducbui@umich.edu",
description="Privacy policy analysis",
license='Apache License 2.0',
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/ducalpha/privacy_policy_nlp",
packages=setuptools.find_packages('src'),
package_dir={'': 'src'},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
python_requires='>=3.7',
)