-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·44 lines (41 loc) · 1.55 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
from os.path import dirname, join
from setuptools import setup, find_packages
with open(join(dirname(__file__), 'reminder/VERSION'), 'rb') as f:
version = f.read().decode('ascii').strip()
setup(
name='reminder',
version=version,
description='A Service to keep track of vehicle service date',
long_description=open('README.md').read(),
author='Bharath Kumar',
author_email="[email protected]",
maintainer='Bharath Kumar',
maintainer_email='[email protected]',
license='Apache 2.0',
packages=find_packages(exclude=('tests', 'tests.*')),
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': ['reminder=reminder.launch.launch:execute']
},
classifiers=[
'Framework :: Reminder',
'Development Status :: 1 - Development',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: Ubuntu',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
],
)