-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
46 lines (43 loc) · 1.43 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
44
45
46
from setuptools import setup
from anviz_sync import __version__
with open("README.rst") as readme:
long_description = str(readme.read())
setup(
name='anviz-sync',
version=__version__,
author='Augusto Roccasalva',
url='https://github.com/coyotevz/anviz-sync',
description='Sync Anviz Time & Attendance data with specified database',
long_description=long_description,
download_url='https://github.com/coyotevz/anviz-sync',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intented Audience :: End Users/Desktop',
'Intented Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: POSIX ',
'Operating System :: POSIX :: BSD',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Office/Business',
],
keywords="anviz a300 time attendance",
platforms='any',
license='BSD',
packages=['anviz_sync'],
install_requires=[
'SQLAlchemy>=0.9.8',
],
entry_points={
'console_scripts': [
'anviz-sync = anviz_sync.sync:main'
'anviz-rt = anviz_sync.rt:main'
],
},
)