-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (37 loc) · 1.08 KB
/
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
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
try:
import pypandoc
LONG_DESCRIPTION = pypandoc.convert('README.md', 'rst')
except:
with open('README.md', 'r') as readme_file:
LONG_DESCRIPTION = readme_file.read()
with open('requirements.txt', 'r') as req:
requirements = req.read()
setup(
name='infraless',
version='0.0.06-alpha',
description='Run your code at scale without worrying about the cloud',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author='Pulkit Kumar',
author_email='[email protected]',
url='https://github.com/ispulkit',
license='unlicensed',
packages=find_packages(exclude=['ez_setup', 'tests*']),
package_data={
'infraless': ['templates/*'],
},
include_package_data=True,
install_requires=[
requirements,
],
entry_points="""
[console_scripts]
infraless = infraless.cli_router:main
""",
)