-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (29 loc) · 879 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
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
from html_cleaner import VERSION, PROJECT
MODULE_NAME = 'html-cleaner'
PACKAGE_NAME = 'html_cleaner'
PACKAGE_DATA = list()
def read( fname ):
try:
return open( os.path.join( os.path.dirname( __file__ ), fname ) ).read()
except IOError:
return ''
META_DATA = dict(
name = PROJECT,
version = VERSION,
description = read('DESCRIPTION'),
long_description = read('README.rst'),
license='MIT',
author = "Illia Polosukhin",
author_email = "[email protected]",
url = "http://github.com/ProstoKSI/html-cleaner.git",
packages = find_packages(),
package_data = { '': PACKAGE_DATA, },
install_requires = [
'beautifulsoup',
],
)
if __name__ == "__main__":
setup( **META_DATA )