-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 756 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 756 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
import os
import shutil
from setuptools import setup
from distutils.command import install as install_module
class Install(install_module.install):
def run(self):
install_module.install.run(self)
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="Underscore",
version="0.0.4",
packages=["underscore"],
author="Huan Do",
author_email="doboy0@gmail.com",
description=("Obfuscating code by changing"
" the variable names to underscores"),
long_description=read("README.md"),
url="https://github.com/Doboy/Dunderscore",
tests_require=["nose", "nose-cov"],
scripts=["bin/_"],
cmdclass = {
'install' : Install,
},
)