-
Notifications
You must be signed in to change notification settings - Fork 35
/
setup.py
executable file
·31 lines (29 loc) · 1.13 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2011-2018, Yelp, Inc.
import os
from setuptools import setup
setup(
name='parcelgen',
version='1.0.3',
license='Apache Software License',
description='Library for simplifying generation of Android objects to share between activities',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(),
author='=Yelp, Inc.',
author_email='[email protected]',
url='https://github.com/Yelp/parcelgen',
py_modules=['parcelgen'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
entry_points={'console_scripts': ['parcelgen = parcelgen:main']},
)