-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
26 lines (22 loc) · 897 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
# Copyright 2021 John Kitchin
# (see accompanying license files for details).
from setuptools import setup
setup(name='f21_06623',
version='0.0.1',
description='support for F21 06-623',
url='http://github.com/jkitchin/f21-06623',
maintainer='John Kitchin',
maintainer_email='jkitchin@andrew.cmu.edu',
license='GPL',
platforms=['linux'],
packages=['f21_06623'],
setup_requires=[],
include_package_data=True,
data_files=['requirements.txt', 'LICENSE', 'f21_06623/InclassMCQs.xlsx'],
install_requires=[],
long_description='''Just support functions for multiple choice questions.''')
# (shell-command "python setup.py register") to setup user
# to push to pypi - (shell-command "python setup.py sdist upload")
# Set TWINE_USERNAME and TWINE_PASSWORD in .bashrc
# python setup.py sdist bdist_wheel
# twine upload dist/*