-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 838 Bytes
/
setup.py
File metadata and controls
31 lines (27 loc) · 838 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
27
28
29
30
31
# coding=utf-8
from setuptools import setup
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="python-periods",
version="0.2.0",
description="Some convenient classes and methods for working with time periods",
author="Johanna Eriksson",
author_email="johanna.eriksson@booli.se",
maintainer="Olof Sjöbergh",
maintainer_email="olofsj@gmail.com",
url="https://github.com/iloob/python-periods",
license="MIT",
packages=[
"periods",
],
long_description=read("README.md"),
install_requires=read("requirements.txt"),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
],
test_suite="unittests",
)