-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
43 lines (35 loc) · 1.14 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
42
43
# #!/usr/bin/env python
import os
import sys
from setuptools import setup
THIS_DIR = os.path.basename(os.path.abspath(__file__))
sys.path.insert(0, os.path.join(THIS_DIR, 'virtualcandy'))
import virtualcandy
setup(
name="virtualcandy",
version=virtualcandy.__version__,
packages=['virtualcandy'],
author="Jeff Buttars",
author_email="[email protected]",
description="Virtualcandy description",
license="Apache",
url="https://github.com/jeffbuttars/virtualcandy",
long_description=open('README.md').read(),
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Internet',
],
install_requires=[],
scripts=['virtualcandy/vcshellinstaller'],
package_data={'virtualcandy': ['lib/*', 'lib/tmpl/*']},
# data_files=[
# pipenv (
# '/etc/profile.d/virtualcandy',
# ['virtualcandy/vc_common_code.sh', 'virtualcandy/vc_config.sh',
# 'virtualcandy/virtualcandy.sh', 'virtualcandy/virtualcandy.zsh'
# ]
# )
# ]
)