-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (33 loc) · 898 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
import sys
assert sys.platform.startswith('darwin'), 'This package is for mac only.'
setup(
name='Ramdisk-Mounter',
version='0.1.1',
url='https://github.com/dmr/ramdisk-mounter',
license='LICENSE.txt', #'MIT'
author='Daniel Rech',
author_email='[email protected]',
description='',
long_description=__doc__,
py_modules= ['ramdisk_mounter'],
entry_points={
'console_scripts': [
'ramdisk_mounter = ramdisk_mounter:main',
],
},
install_requires=[
'argparse',
'subprocess32'
],
zip_safe=False,
platforms='darwin',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
],
tests_require=['spec'],
)