-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
43 lines (37 loc) · 1.08 KB
/
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
42
43
#!/usr/bin/env python
import sys
import os
from setuptools import setup, find_packages
from plann.metadata import metadata
metadata_ = metadata.copy()
for x in metadata:
if not x in ('author', 'version', 'license', 'maintainer', 'author_email',
'status', 'name', 'description', 'url', 'description'):
metadata_.pop(x)
setup(
packages=['plann'],
classifiers=[
#"Development Status :: ..."
"Environment :: Web Environment",
#"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
],
py_modules=['plann'],
install_requires=[
'caldav>=1.4.0',
'tzlocal',
'Click',
'PyYAML',
'sortedcontainers'
],
entry_points={
'console_scripts': [
'plann = plann.cli:cli',
],
},
**metadata_
)