forked from noyainrain/micro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 762 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 762 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
from setuptools import find_packages, setup
with open('README.md') as f:
long_description = f.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='noyainrain.micro',
version='0.69.0',
url='https://github.com/noyainrain/micro',
maintainer='Sven James',
maintainer_email='sven@inrain.org',
description='Toolkit for social micro web apps.',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Operating System :: POSIX',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)'
],
packages=find_packages(),
package_data={'micro': ['doc/*']},
install_requires=requirements
)