-
Notifications
You must be signed in to change notification settings - Fork 86
/
setup.py
36 lines (33 loc) · 1.02 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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='sarenka',
version='0.0.1',
description='Say hello!',
py_modules=["sarenka"],
package_dir={'': 'sarenka'},
classifiers=[
"Development Status :: 1 - Planning",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: POSIX :: Linux",
],
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"blessings ~= 1.7",
],
extras_require={
"dev": [
"pytest>=3.7",
"twine>=3.2.0",
],
},
url="https://github.com/pawlaczyk/sarenka",
author="Dominika Pawlaczyk, Michał Pawlaczyk, Karolina Słonka",
author_email="[email protected]"
)