-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 728 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (24 loc) · 728 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
import subprocess
from sys import platform
import os
from setuptools import setup
with open('requirements.txt') as f:
required = f.read().splitlines()
with open("README.md","r") as f:
long_description = f.read()
version = "0.4.1"
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/pypro.git',
author='Paul Tarau',
author_USER_EMAIL='<paul.tarau@gmail.com>',
license='Apache',
packages=['Natlog'],
package_data={'natprogs': ['*.nat',"*.json"], 'bak':["*.py"]},
include_package_data=True,
install_requires = required,
zip_safe=False
)