-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 885 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 885 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
import pathlib
from setuptools import setup
import xkcd_python
requirements = pathlib.Path("requirements.txt").read_text()
requirements = requirements.splitlines()
# Setting up
setup(
name= "xkcd_python",
version= "3.3.0",
author= xkcd_python.__author__,
author_email= "sasen.learnings@gmail.com",
description= xkcd_python.__shot_des__,
long_description_content_type="text/markdown",
long_description= open("README.md", "r", encoding="utf-8").read(),
install_requires=requirements,
keywords=['python', "python3"],
classifiers= [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows"
]
)