-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (27 loc) · 810 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
import codecs
import os
import setuptools
def read(*parts):
path = os.path.join(os.path.dirname(__file__), *parts)
with codecs.open(path, 'rb', 'utf-8') as f:
return f.read()
if __name__ == '__main__':
setuptools.setup(
name='hardlink',
version='0.2',
description='Copy files and merge directories using hard links.',
long_description=read('README.rst'),
url='https://github.com/mrmachine/hardlink',
license='MIT',
author='Tai Lee',
author_email='[email protected]',
packages=setuptools.find_packages(where='src'),
package_dir={
'': 'src',
},
entry_points={
'console_scripts': [
'hardlink = hardlink.base:main',
],
},
)