forked from oaaky/SE_Fall20_Project-1
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (19 loc) · 720 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (19 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Reference : Setup script documentation
# https://setuptools.readthedocs.io/en/latest/setuptools.html
from setuptools import setup, find_packages
def get_requirements(filename):
with open(filename) as f:
requirements = f.read().splitlines()
return requirements
setup(name='codeTime',
setup_requires=['pytest-runner', 'pytest-pylint'],
tests_require=['pytest', 'pylint'],
version='1.0',
description='CSC 510: Software Engineering Project 1',
author='Omkar Kulkarni',
author_email='omkar.omkar.135@gmail.com',
license="MIT",
packages=find_packages(),
python_requires=">=3.3",
install_requires=get_requirements("requirements.txt"),
)