-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 715 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (24 loc) · 715 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='pyfu',
version='0.1',
description='Codec and Import Hook for a Declarative Python',
author='Sven R. Kunze',
author_email='srkunze@mail.de',
url='https://github.com/srkunze/pyfu',
license='MIT',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
],
packages=['pyfu'],
)
#TODO: add post install script to add pyfu.pth to the lib
# import shutil
# from distutils.sysconfig import get_python_lib
#
# python_lib = get_python_lib()
# shutil.copy('pyfu.pth', python_lib)