-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (34 loc) · 880 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
from setuptools import setup, find_packages
import os
name = "presence_analyzer"
version = "0.2.2"
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(
name=name,
version=version,
description="Presence analyzer",
long_description=read('README.md'),
classifiers=[],
keywords="",
author="",
author_email='',
url='',
license='MIT',
package_dir={'': 'src'},
packages=find_packages('src'),
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'Flask',
],
entry_points="""
[console_scripts]
flask-ctl = presence_analyzer.script:run
download_users = presence_analyzer.script:download_xml
[paste.app_factory]
main = presence_analyzer.script:make_app
debug = presence_analyzer.script:make_debug
""",
)