-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
33 lines (32 loc) · 1.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
import setuptools
setuptools.setup(
name="jarvis_cd",
packages=setuptools.find_packages(),
scripts=['bin/jarvis'],
version="0.0.1",
author="Luke Logan",
author_email="[email protected]",
description="Create basic for applications",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url="https://github.com/scs-lab/jarvis-cd",
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 0 - Pre-Alpha",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: None",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Application Configuration",
],
install_requires=[
'pyyaml',
# 'pylint==2.15.0',
# 'coverage==5.5',
# 'coverage-lcov==0.2.4',
# 'pytest==6.2.5',
'jarvis-util @ git+https://github.com/scs-lab/jarvis-util.git#egg=jarvis-util'
]
)