-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
42 lines (36 loc) · 1.11 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
34
35
36
37
38
39
40
41
from setuptools import setup
from os import path
VERSION = (0, 3, 2)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))
f = open(path.join(path.dirname(__file__), 'README.rst'))
long_description = f.read().strip()
f.close()
setup(
name = 'RVirtualEnv',
description = "relocatable python virtual environment",
url = "http://github.com/kvbik/rvirtualenv",
long_description = long_description,
version = __versionstr__,
author = "Jakub Vysoky",
author_email = "[email protected]",
license = "BSD",
packages = ['rvirtualenv'],
entry_points = {
'console_scripts': [
'rvirtualenv = rvirtualenv:main',
],
},
zip_safe = False,
include_package_data = True,
test_suite = "tests.test_all.runtests",
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
)