-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (29 loc) · 1.16 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
import os
from setuptools import setup
README = os.path.join(os.path.dirname(__file__), 'README.rst')
REQUIREMENTS = os.path.join(os.path.dirname(__file__), 'requirements.txt')
if __name__ == "__main__":
setup(
name='senior-hcm',
description='Client to access Senior HCM',
version='0.0.2',
long_description=open(README).read(),
author="Lucas Rangel Cezimbra",
author_email="lucas.cezimbra@gmail.com",
license="LGPLv2",
url='https://github.com/Lrcezimbra/senior-hcm',
keywords=['senior', 'hcm', 'requests', 'payroll'],
install_requires=open(REQUIREMENTS).readlines(),
packages=['senior_hcm'],
zip_safe=False,
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
],
)