forked from earthlab/abc-classroom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
67 lines (63 loc) · 2.08 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# read the contents of your README file
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
DISTNAME = "abc-classroom"
DESCRIPTION = (
"Efficiently manage github classroom assignments from the command line."
)
MAINTAINER = "Leah Wasser"
MAINTAINER_EMAIL = "[email protected]"
setup(
name=DISTNAME,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
version="0.1.9",
license="BSD",
packages=["abcclassroom"],
install_requires=[
"jinja2",
"ruamel.yaml",
"github3.py",
],
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Topic :: Software Development",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
],
include_package_data=True,
package_data={
"abcclassroom": [
"example-data/readme.md",
"example-data/classroom_roster.csv",
"example-data/config.yml",
"example-data/extra_files/README.md",
"example-data/extra_files/.gitignore",
]
},
entry_points={
"console_scripts": [
"abc-init = abcclassroom.__main__:init",
"abc-quickstart = abcclassroom.__main__:quickstart",
"abc-new-template = abcclassroom.__main__:new_template",
"abc-update-template = abcclassroom.__main__:update_template",
"abc-clone = abcclassroom.__main__:clone",
"abc-feedback = abcclassroom.__main__:feedback",
"abc-roster = abcclassroom.__main__:roster",
]
},
url="https://github.com/earthlab/abc-classroom",
)