-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 862 Bytes
/
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
from setuptools import setup
def readme():
with open("README.md") as f:
return f.read()
setup(
name="cpsm",
version="1.1.2", # Matches __init__.py
author="Bryon Tjanaka",
author_email="[email protected]",
description="Competitive Programming Solutions Manager",
long_description=readme(),
long_description_content_type="text/markdown",
url="http://github.com/btjanaka/cpsm",
install_requires=[
"Jinja2>=2.10.1",
],
extras_require={},
license="MIT",
keywords="competitive-programming solutions kattis leetcode hackerrank uva",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
],
include_package_data=True,
packages=["cpsm"],
scripts=["bin/cpsm"],
)