-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (30 loc) · 1.05 KB
/
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
29
30
31
32
33
34
35
36
from os import path
from setuptools import setup, find_packages
def read(name):
with open(path.join(
path.abspath(path.dirname(__file__)),
name
), encoding='utf-8') as f:
return f.read()
setup(
name='ASTFormula',
version='0.0.3',
author='Oleh Rybalchenko',
author_email='[email protected]',
url='https://github.com/oryba/astformula',
description='A simple and extensible AST-based Python formula engine '
'to execute string calculation statements',
download_url='https://github.com/oryba/astformula/archive/v0.0.3.zip',
license='OSI Approved (BSD)',
packages=find_packages(),
install_requires=['astunparse'],
long_description=read('README.md'),
long_description_content_type='text/markdown',
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
)