-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (33 loc) · 1.02 KB
/
setup.py
File metadata and controls
37 lines (33 loc) · 1.02 KB
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
import setuptools
from setuptools import setup
import os.path as path
# Get the path to our current directory
path_here = path.abspath(path.dirname(__file__))
# Get the package version from its universal storage location, cptac/version.py
version = {}
version_path = path.join(path_here, "biograder", "version.py")
with open(version_path) as fp:
exec(fp.read(), version)
# Get the long description from the README file
readme_path = path.join(path_here, "README.md")
with open(readme_path) as readme_file:
readme_text = readme_file.read()
setup(
name='biograder',
version='1.1.0',
author='PayneLab',
author_email='sam_payne@byu.edu',
description='grader',
url='https://github.com/PayneLab/biograder',
packages=['biograder'],
install_requires=[
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6.*',
zip_safe=False,
include_package_data=True,
)