-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
45 lines (39 loc) · 1.13 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
43
44
45
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = f.readlines()
with open("README.md", "r") as fh:
readme = fh.read()
long_description = readme
cmds = ["cmd/*.txt"]
setup(
name='ez_docs',
version='1.1.0',
author="""
Bruno Ribeiro,
Bruno Martins,
Diógenes Dantas,
Igor Penha,
Lucas Gobbi e Rafael Nobre
""",
author_email='[email protected]',
url='https://github.com/fga-eps-mds/2022-2-ez-docs',
description='A python package to quick doc generation',
long_description=long_description,
long_description_content_type="text/markdown",
license='MIT',
keywords=['ez_docs', 'ez-docs'],
packages=find_packages(where='src'),
package_dir={'': 'src'},
package_data={'ez_docs': cmds},
entry_points={
'console_scripts': [
'ez-docs=ez_docs.main:main'
]
},
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
install_requires=requirements
)