-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (28 loc) · 914 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
import os
from setuptools import find_packages
from setuptools import setup
with open("README.rst", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="kockatykalendar",
version="0.2.0",
url="https://github.com/kockatykalendar/python",
license='MIT',
author="Adam Zahradník",
author_email="[email protected]",
description="API, tools and utilities for working with KockatyKalendar.sk",
long_description=long_description,
packages=find_packages(exclude=('tests',)),
install_requires=[],
extras_require={
"django": ["django>=1.7"],
"api": ["requests>=2.0.0"]
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
)