File tree Expand file tree Collapse file tree 3 files changed +30
-1
lines changed
Expand file tree Collapse file tree 3 files changed +30
-1
lines changed Original file line number Diff line number Diff line change 11! \. gitignore
22\. *
3+ asu.egg-info /
34asu /__pycache__ /
45bin /
56cache /
7+ dist /
68lib /
79lib64
810pyvenv.cfg
Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ Flask-Cors==3.0.8
55itsdangerous == 1.1.0
66Jinja2 == 2.11.1
77MarkupSafe == 1.1.1
8- pkg-resources == 0.0.0
98pycparser == 2.19
109PyNaCl == 1.3.0
1110redis == 3.4.1
Original file line number Diff line number Diff line change 1+ import io
2+
3+ from setuptools import find_packages , setup
4+ from os .path import dirname , abspath , join
5+
6+
7+ with io .open ("README.md" , "rt" , encoding = "utf8" ) as f :
8+ readme = f .read ()
9+
10+ base_path = dirname (abspath (__file__ ))
11+
12+ with open (join (base_path , "requirements.txt" )) as req_file :
13+ requirements = req_file .readlines ()
14+
15+ setup (
16+ name = "asu" ,
17+ version = "0.3.0" ,
18+ url = "https://github.com/aparcar/asu" ,
19+ maintainer = "Paul Spooren" ,
20+ maintainer_email = "mail@aparcar.org" ,
21+ description = "Create images for OpenWrt on demand" ,
22+ long_description = readme ,
23+ long_description_content_type = "text/markdown" ,
24+ packages = find_packages (),
25+ include_package_data = True ,
26+ install_requires = requirements ,
27+ zip_safe = False ,
28+ )
You can’t perform that action at this time.
0 commit comments