-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (43 loc) · 1.4 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
46
47
48
from setuptools import setup, find_packages
# Get Long Description
with open("README.md", "r") as readme:
long_description = readme.read().replace("Â", "")
# Get requirements.txt
with open("requirements.txt", "r") as requirements:
reqs = requirements.read().splitlines()
setup(
name="BetterString",
version="2.17.3",
# Major version 2
# Minor version 17
# Maintenance version 3
author="DerSchinken",
description="Like a normal string but with more functionality",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=reqs,
python_requires=">=3.6",
project_urls={
"Homepage": "http://index12.bplaced.net/",
"Github": "https://github.com/DerSchinken/BetterString",
},
package_data={
"BetterString": ["*.pyi"],
},
keyword=[
"Better String",
"String", "str",
"BetterString",
],
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
"Programming Language :: Python :: 3.10"
],
)
# https://DerSchinken.GitHub.io/BetterString/