-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (27 loc) · 871 Bytes
/
setup.py
File metadata and controls
40 lines (27 loc) · 871 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
readme_content = fh.read().strip()
setuptools.setup(
name="pcl2_ex03",
version="0.0.1",
author="cui, mia",
author_email="cui.ding@uzh.ch, miatatjana.egli@uzh.ch",
description="Creating CLI for processing joke.",
long_description=readme_content,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
license="MIT",
packages=['clipkg'],
include_package_data=True,
package_data={'clipkg': ['data/*']},
entry_points={
'console_scripts': [
'jg = clipkg.CLI:main'
]
},
python_requires=">=3.6",
)