-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (48 loc) · 1.35 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
49
50
51
52
import setuptools
def get_readme():
with open("README.rst") as f:
return f.read()
setuptools.setup(
# the first three fields are a must according to the documentation
name="pyfakeuse",
version="0.0.9",
packages=[
"pyfakeuse",
],
# from here all is optional
description="pyfakeuse helps you fool development environments and code inspectors",
long_description=get_readme(),
long_description_content_type="text/x-rst",
author="Mark Veltzer",
author_email="mark.veltzer@gmail.com",
maintainer="Mark Veltzer",
maintainer_email="mark.veltzer@gmail.com",
keywords=[
"python",
"fake",
"use",
"variables",
"idea",
"pycharm",
"fool",
],
url="https://veltzer.github.io/pyfakeuse",
download_url="https://github.com/veltzer/pyfakeuse",
license="MIT",
platforms=[
"python3",
],
install_requires=[
],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
],
)