forked from grc-iit/jarvis-cd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (23 loc) · 778 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
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",
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",
],
long_description=""
)