-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 766 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 766 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
import setuptools
from cati.frontend import Version
f = open('README.md', 'r')
long_description = f.read()
f.close()
setuptools.setup(
name="cati",
version=Version.version,
author="parsa shahmaleki",
author_email="parsampsh@gmail.com",
description="The Cati Unix Package manager",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/parsampsh/gameoflife",
packages=setuptools.find_packages(),
scripts=['etc/bin/cati'],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: Unix",
],
python_requires='>=3.6',
install_requires=[
'packaging >= 20.4',
'requests >= 2.25.0',
'wget >= 3.2',
],
)