-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 819 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 819 Bytes
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
"""
Setup script for randomtimezone
"""
from setuptools import setup
from randomtimezone import __author__, __version__
setup(name='randomtimezone',
author=__author__,
version=__version__,
url='https://github.com/itismadness/randomtimezone',
description='Generate datetime with a random timezone',
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License'
],
entry_points={
'console_scripts': [
'randomtimezone = randomtimezone:main'
]
})