-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 931 Bytes
/
Copy pathsetup.py
File metadata and controls
36 lines (33 loc) · 931 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
25
26
27
28
29
30
31
32
33
34
35
36
from setuptools import setup
import setuptools
import natlog
# with open('natlog/requirements.txt') as f:
# required = f.read().splitlines()
required = []
with open("README.md", "r") as f:
long_description = f.read()
version = natlog.get_version()
setup(
name="natlog",
version=version,
description="Prolog-like interpreter and tuple store",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ptarau/natlog.git",
author="Paul Tarau",
author_email="paul.tarau@gmail.com",
license="Apache",
packages=setuptools.find_packages(),
package_data={
"natlog": [
"natlog/requirements.txt",
"natprogs/*.nat",
"natprogs/*.tsv",
"natprogs/*.pro",
"natprogs/*.json",
]
},
include_package_data=True,
install_requires=required,
zip_safe=False,
)