-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
31 lines (28 loc) · 1009 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
29
30
31
# -*- coding: utf-8 -*-
from setuptools import setup
import astmonkey
with open('README.rst') as f:
long_description = f.read()
setup(
name='astmonkey',
version=astmonkey.__version__,
description='astmonkey is a set of tools to play with Python AST.',
author='Konrad Hałas',
author_email='halas.konrad@gmail.com',
url='https://github.com/mutpy/astmonkey',
packages=['astmonkey'],
install_requires=['pydot'],
long_description=long_description,
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: Apache Software License'
]
)