-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 930 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 930 Bytes
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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='python_fcm',
version='0.1',
description='Simple FCM notification',
long_description='Simple FCM notification',
url='http://github.com/vipin08/python_fcm',
author='Vipin Kumar',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Topic :: Text Processing :: Linguistic',
],
# entry_points = {
# 'console_scripts': ['halo-fun=halofun.command_line:main'],
# },
author_email='vpnkumar.kumar1@gmail.com',
license='MIT',
packages=['python_fcm'],
test_suite='nose.collector',
# scripts=['bin/halo-fun'],
tests_require=['nose'],
# install_requires=[
# 'markdown',
# ],
zip_safe=False)