forked from cdown/tzupdate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·41 lines (31 loc) · 1011 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
41
#!/usr/bin/env python
from setuptools import setup
with open('README.rst') as readme_f:
README = readme_f.read()
with open('requirements.txt') as requirements_f:
REQUIREMENTS = requirements_f.readlines()
setup(
name='tzupdate',
version='1.1.0',
description='Set the system timezone based on IP geolocation',
long_description=README,
url='https://github.com/cdown/tzupdate',
license='Public Domain',
author='Chris Down',
author_email='[email protected]',
py_modules=['tzupdate'],
install_requires=REQUIREMENTS,
entry_points={
'console_scripts': ['tzupdate=tzupdate:main'],
},
keywords='timezone localtime tz',
classifiers=[
"Development Status :: 4 - Beta",
"License :: Public Domain",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: System",
"Topic :: System :: Networking :: Time Synchronization",
"Topic :: Utilities",
],
)