-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 1 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
def readme():
with open("README.md", "r") as f:
return f.read()
def requirements():
with open("requirements.txt") as f:
req = [line.rstrip("\n") for line in f]
return req
setup(
name="dancebots",
version="1.0.0",
description="A Python package for programming Dancebots",
long_description=readme(),
long_description_content_type="text/markdown",
url="https://github.com/r-oung/dancebots-python",
author="Raymond Oung",
author_email="[email protected]",
license="GNU GPLv3",
keywords="robot education STEM dancebots",
classifiers=[
"License :: OSI Approved :: GNU GPLv3",
"Programming Language :: Python :: 3.6",
'Intended Audience :: Developers',
'Operating System :: OS Independent',
"Topic :: Software Development :: Libraries",
],
packages=find_packages(exclude=("tests",)),
install_requires=requirements(),
python_requires=">=3.6",
)