-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 885 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
27
import setuptools
setuptools.setup(
name="scspkg",
packages=setuptools.find_packages(),
scripts=['bin/scspkg'],
version="0.0.1",
author="Luke Logan",
author_email="[email protected]",
description="Helps build modulefiles",
url="https://github.com/scs-lab/scspkg",
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="",
install_requires=[
# 'jarvis-util @ git+https://github.com/scs-lab/jarvis-util.git#egg=jarvis-util'
]
)