-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1011 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
33
34
35
36
from setuptools import setup
# The text of the README file
README = open("README.md").read()
# This call to setup() does all the work
setup(
name="codePost-princeton-tools",
version="1.0.9",
description="Custom terminal tools for Princeton University to manage codePost.",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/PrincetonUniversity/codePost-tools",
author="codePost",
author_email="team@codepost.io",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
],
packages=[],
scripts=[
"bin/push-to-codePost",
"bin/ls-tigerfile-groups",
"bin/export-codePost-grades",
"bin/fix-codePost-partners"
],
install_requires=[
"codePost-api",
"codePost-tools",
"PyYAML",
"requests"
],
include_package_data=True,
)