-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (30 loc) · 1.09 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
import setuptools
requirements = []
with open("requirements.txt", "r") as f:
for line in f.readlines():
requirements.append(line[:line.find('==')])
with open('README.md', 'r') as f:
long_description = f.read()
setuptools.setup(
name="path_of_pain_daily_build",
version="0.0.2.dev0",
author="ilyabelow",
author_email="[email protected]",
description="Simple top view slasher for a uni course on Python & Programming technologies & CI",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/ilyabelow/path_of_pain",
license='MIT',
packages=setuptools.find_packages(),
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Topic :: Software Development :: Build Tools',
"Development Status :: 1 - Planning",
"Natural Language :: English",
"Topic :: Games/Entertainment",
"Intended Audience :: End Users/Desktop",
],
)