-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
41 lines (39 loc) · 999 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
"""
Bundle virtualenv and project to an artifact.
"""
from setuptools import setup, find_packages
setup(
name='beeper',
version='0.9.1',
url='https://github.com/soasme/beeper.py',
license='MIT',
author='Ju Lin',
author_email='[email protected]',
description='Bundle virtualenv and project to an artifact.',
long_description=__doc__,
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'click>=6.0',
'PyYAML>=3.11',
'wheel>=0.10.0',
],
packages=find_packages(),
package_data={
"": [
"builders/python_installer.sh",
]
},
entry_points={
'console_scripts': [
'beeper = beeper.cmd:main'
]
},
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)