-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 714 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 714 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 setup, find_packages
with open('requirements.txt') as f:
required = f.read().splitlines()
required = [i for i in required if "@" not in i]
setup(
name='mmlm',
version='0.0.1',
description='',
url='https://github.com/voidful/MMLM',
author='Voidful',
author_email='voidful.stack@gmail.com',
long_description=open("README.md", encoding="utf8").read(),
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 4 - Beta',
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python"
],
packages=find_packages(),
install_requires=required,
zip_safe=False,
)