-
Notifications
You must be signed in to change notification settings - Fork 49
/
setup.py
36 lines (34 loc) · 937 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
"""
Setup and installation for the package.
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="moment",
version="0.12.1",
url="http://github.com/zachwill/moment",
author="Zach Williams",
author_email="hey@zachwill.com",
description="Dealing with dates and times should be easy",
keywords=["moment", "dates", "times", "zachwill"],
packages=[
"moment"
],
install_requires=[
"dateparser>=0.7",
"pytz>=2018.9",
"times>=0.7",
],
license="MIT",
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)