-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (27 loc) · 882 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
from setuptools import setup, find_packages
setup(
name='app',
version='0.1.0',
description=('App. Imports `test` function, has `app` CLI executable that prints ' +
'PATH to show that the app runs in the activated environment.'),
url='https://github.com/me/app',
author='My Name',
author_email='[email protected]',
license='Proprietary',
# it's a sample setup.py. Actually this file's license is the same as the whole repo's
packages=find_packages(),
install_requires=['setuptools'],
# add non .py files from MANIFEST.in:
include_package_data=True,
# create cross-platform executables:
entry_points={
'console_scripts': [
'app=app.app:cli',
'app-ready=app.ready:ready',
],
},
scripts=[
'scripts/myscript.bat',
'scripts/myscript',
],
)