-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (42 loc) · 1.53 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# !/usr/bin/env python
from setuptools import setup, find_packages
from pathlib import Path
from os import path, makedirs
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as file:
long_description = file.read()
setup(
name='qubekit',
description='Quantum mechanical bespoke force field parameter generation',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/jthorton/QUBEKitdev',
packages=find_packages(),
author=['Joshua Thomas Horton', 'Chris Ringrose'],
entry_points={
'console_scripts': [
'QUBEKit = QUBEKit.run:main',
'qubekit = QUBEKit.run:main',
'QUBEKit-josh = QUBEKit.tests_josh:main',
'QUBEKit-chris = QUBEKit.tests_chris:main',
'QUBEKit-pro = QUBEKit.protein_run:main'
]
},
version='2.0.0',
license='MIT',
classifiers=[
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
python_requires='~=3.5'
)
print('Finding home directory to store QUBEKit config files')
home = str(Path.home())
config_folder = f'{home}/QUBEKit_configs/'
if not path.exists(config_folder):
makedirs(config_folder)
print(f'Making config folder at: {home}')