-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 1.02 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
#!/usr/bin/env python
import setuptools
if __name__ == "__main__":
setuptools.setup(name = "unity",
version = "0.1.1-alpha.2",
description = "",
author = ["Benjamin Rose", "David Rubin"],
author_email = ["benjamin.rose@duke.edu", "drubin@hawaii.edu"],
license = "MIT",
# readme = "README.rst",
url = "https://github.com/rubind/host_unity",
# homepage
# documentation
classifiers = ["Develoment Status :: 4 - Beta",
"Environment :: Console",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX"],
# entry_points = {'unity': ["unity.cli:cli"]}
entry_points = '''[console_scripts]
unity=unity.cli:cli
''',
)