1- import re
2- import setuptools
1+ #!/usr/bin/env python
2+ from setuptools import setup
33
4- with open ("README.md" , "r" , encoding = "utf-8" ) as fh :
5- long_description = fh .read ()
6-
7- install_req = []
8- with open ('requirements.txt' ) as f :
9- requirements = f .read ()
10-
11- for line in re .split ('\n ' , requirements ):
12- install_req .append (line )
13-
14-
15- setuptools .setup (
16- name = "localstack-utils" ,
17- description = 'An easy way to inclute Localstack with unit tests' ,
18- version = "0.0.1" ,
19- author = 'Waldemar Hummer' ,
20- author_email = 'waldemar.hummer@gmail.com' ,
21- long_description = long_description ,
22- long_description_content_type = "text/markdown" ,
23- url = "" ,
24- project_urls = {
25- "Bug Tracker" : "" ,
26- },
27- license = 'Apache License 2.0' ,
28- classifiers = [
29- "Programming Language :: Python :: 3" ,
30- "Operating System :: OS Independent" ,
31- "License :: OSI Approved :: Apache Software License" ,
32- "Topic :: Software Development :: Testing" ,
33- ],
34- package_dir = {"" : "localstack_utils" },
35- packages = setuptools .find_packages (where = "localstack_utils" ),
36- python_requires = ">=3.6" ,
37- install_requires = install_req
38- )
4+ setup ()
0 commit comments