-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
28 lines (25 loc) · 835 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
from setuptools import setup
with open("README.md", "r", encoding="utf8") as rm:
readme = rm.read()
with open("requirements.txt") as rq:
requirements = rq.read().split('\n')
setup(
name="pytholog",
version="2.4.1",
description="Logic Programming in Python",
#py_modules=["pytholog"],
#package_dir={"": "src"},
packages=["pytholog"],
install_requires=requirements,
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/mnoorfawi/pytholog",
author="Muhammad N. Fawi",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
]
)