-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 1.2 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
from setuptools import find_packages, setup
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
with open('requirements.txt', 'r', encoding='utf-8') as f:
requirements = f.read().splitlines()
requirements = [r.strip() for r in requirements]
setup(
name="script_house",
version="1.1.1",
description="a python script house containing handy functions for daily use",
packages=find_packages(),
url="https://github.com/gustaavv/script-house",
author="Gustav",
author_email="[email protected]",
# python_requires=">=3.11",
install_requires=requirements,
classifiers=[
"Operating System :: Microsoft :: Windows :: Windows 10",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"Intended Audience :: Other Audience",
"Natural Language :: Chinese (Simplified)",
"Natural Language :: English",
"Programming Language :: Python :: 3"
],
long_description=long_description,
long_description_content_type='text/markdown'
)