-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (25 loc) · 741 Bytes
/
setup.py
File metadata and controls
31 lines (25 loc) · 741 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
# -*- coding: utf-8 -*-
from setuptools import setup
from undecorated import __version__
with open('README.rst') as readme:
long_description = readme.read()
setup(
name='undecorated',
version=__version__,
author='Ionuț Arțăriși',
author_email='ionut@artarisi.eu',
description='Undecorate python functions, methods or classes',
long_description=long_description,
url='https://github.com/mapleoin/undecorated',
py_modules=['undecorated'],
install_requires=[],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python'
],
package_data={
'undecorated': [
]
}
)