Skip to content
This repository was archived by the owner on Mar 23, 2023. It is now read-only.

Commit 4a74f69

Browse files
committed
Preparing to split the parts
1 parent 3ec8795 commit 4a74f69

File tree

290 files changed

+78
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

290 files changed

+78
-0
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

setup.py

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
#!/usr/bin/env python
2+
# -*- coding: utf-8 -*-
3+
#
4+
# Copyright 2016 Google Inc. All Rights Reserved.
5+
#
6+
# Licensed under the Apache License, Version 2.0 (the "License");
7+
# you may not use this file except in compliance with the License.
8+
# You may obtain a copy of the License at
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
# Unless required by applicable law or agreed to in writing, software
13+
# distributed under the License is distributed on an "AS IS" BASIS,
14+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
# See the License for the specific language governing permissions and
16+
# limitations under the License.
17+
18+
"""The setup script."""
19+
20+
from setuptools import setup, find_packages
21+
22+
with open('README.md') as readme_file:
23+
readme = readme_file.read()
24+
25+
requirements = [
26+
'Click>=6.0',
27+
# TODO: Put package requirements here
28+
'importlib2>=3.5.0.2',
29+
'click-default-group>=1.2',
30+
]
31+
32+
setup_requirements = [
33+
'pytest-runner',
34+
# TODO(alanjds): Put setup requirements (distutils extensions, etc.) here
35+
]
36+
37+
test_requirements = [
38+
'pytest',
39+
# TODO: Put package test requirements here
40+
]
41+
42+
setup(
43+
name='grumpy-tools',
44+
version='0.1.0',
45+
description="Grumpy Runtime & Transpiler",
46+
long_description=readme,
47+
author="Dylan Trotter et al.",
48+
maintainer="Alan Justino",
49+
maintainer_email="[email protected]",
50+
url='https://github.com/alanjds/grumpy',
51+
package_dir={'':'grumpy-tools-src'},
52+
packages=find_packages(
53+
'grumpy-tools-src',
54+
exclude=["*.tests", "*.tests.*", "tests.*", "tests"],
55+
),
56+
entry_points={
57+
'console_scripts': [
58+
'grumpy=grumpy.cli:main',
59+
],
60+
},
61+
include_package_data=True,
62+
install_requires=requirements,
63+
license="Apache Software License 2.0",
64+
zip_safe=False,
65+
keywords='grumpy_runtime',
66+
python_requires='~=2.7.0',
67+
classifiers=[
68+
'Development Status :: 2 - Pre-Alpha',
69+
'Intended Audience :: Developers',
70+
'License :: OSI Approved :: Apache Software License',
71+
'Natural Language :: English',
72+
"Programming Language :: Python :: 2",
73+
'Programming Language :: Python :: 2.7',
74+
],
75+
test_suite='tests',
76+
tests_require=test_requirements,
77+
setup_requires=setup_requirements,
78+
)

0 commit comments

Comments
 (0)