-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·38 lines (34 loc) · 1.04 KB
/
setup.py
File metadata and controls
executable file
·38 lines (34 loc) · 1.04 KB
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
#!/usr/bin/env python3
import os
from setuptools import setup, find_packages
def long_description():
with open('README.md', encoding='utf-8') as f:
return f.read()
here = os.path.abspath(os.path.dirname(__file__))
about = {}
with open(os.path.join(here, 'ettil', '__version__.py'),
encoding='utf-8') as f:
exec(f.read(), about)
setup(
name='ettil',
author=about['__author__'],
description=about['__description__'],
license=about['__license__'],
url=about['__url__'],
version=about['__version__'],
long_description=long_description(),
long_description_content_type='text/markdown',
packages=find_packages(include=['ettil']),
python_requires='>=3.6',
install_requires=[
'requests'
],
classifiers=[
'Development Status :: 2 - Pre-Alpha'
'Intended Audience :: Developers'
'License :: OSI Approved :: Apache Software License'
'Operating System :: OS Independent'
'Programming Language :: Python'
'Topic :: Internet :: WWW/HTTP'
]
)