-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
executable file
·41 lines (34 loc) · 1.07 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
37
38
39
40
41
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='pfile-tools',
version='0.5.0',
author='Nathan Vack',
author_email='[email protected]',
license='BSD License',
url='https://github.com/njvack/pfile-tools',
packages=['pfile_tools'],
entry_points={
'console_scripts': [
'dump_pfile_header = pfile_tools.scripts.dump_pfile_header:main',
'anonymize_pfile = pfile_tools.scripts.anonymize_pfile:main'
]}
)
# setup(
# name='pfile-tools',
# version=pfile_tools.VERSION,
# packages=setuptools.find_packages(),
# data_files=[('', ['distribute_setup.py'])],
# license='BSD License',
# long_description=read('README'),
# url="https://github.com/njvack/pfile-tools",
# author="Nathan Vack",
# author_email="[email protected]",
# entry_points = {
# 'console_scripts': [
# 'dump_pfile_header = pfile_tools.scripts.dump_pfile_header:main',
# 'anonymize_pfile = pfile_tools.scripts.anonymize_pfile:main'
# ]
# }
# )