-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 718 Bytes
/
setup.py
File metadata and controls
26 lines (22 loc) · 718 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
from codecs import open
from setuptools import setup
import os
setup(
name='ramadda_publish',
version='1.5',
url="https://github.com/suvarchal/RAMADDA_publish",
author='Suvarchal',
author_email='[email protected]',
license="MIT",
description="python script to make automated entries to ramadda",
long_description_content_type='text/markdown',
long_description=open('README.md').read(),
scripts=['bin/ramadda_publish'],
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
]
)